home *** CD-ROM | disk | FTP | other *** search
-
- //------------------------------------------------------------------->
- //------------------------------------------------------------------->
- //
- // "test-1.pov" - Test the #1 (right side) house.
- //
- // Created by: Paul T. Dawson
- // ptdawson@voicenet.com
- // http://www.voicenet.com/~ptdawson
- //
- //------------------------------------------------------------------->
- //------------------------------------------------------------------->
-
- #include "colors.inc"
- #include "textures.inc"
- #include "skies.inc"
- #include "golds.inc"
- #include "stones.inc"
- #include "woods.inc"
- #default { finish { Shiny } }
-
- //------------------------------------------------------------------->
- //------------------------------------------------------------------->
- //
- // Choose a camera.
-
- #declare Which_Camera = 1
-
- // Front view.
-
- #if ( Which_Camera = 1 )
- camera { location < 45*12, 8*12, -25*12>
- look_at < 28*12, 5*12, 0 > }
- #end
-
- // Left side windows.
-
- #if ( Which_Camera = 2 )
- camera { location < 10*12, 5*12, -20*12>
- look_at < 10*12, 5*12, 0 > }
- #end
-
- // Side view.
-
- #if ( Which_Camera = 3 )
- camera { location < 80*12, 8*12, 10*12>
- look_at < 28*12, 5*12, 12*12 > }
- #end
-
- //------------------------------------------------------------------->
- //------------------------------------------------------------------->
- //
- // Miscellaneous stuff.
-
- light_source { < -1000, 1000, -1000 > color White }
- light_source { < 0, 1000, -1000 > color White }
- light_source { < 1000, 1000, -1000 > color White }
- light_source { < 1000, 60, 144 > color White }
- light_source { < 0, 20, -144 > color White }
-
- background { Cyan }
-
- #declare R=seed(0)
-
- plane { y, 0 pigment { LimeGreen } }
-
- //------------------------------------------------------------------->
- //------------------------------------------------------------------->
- //
- // Include the house include file (what else???).
-
- #include "house-1.inc"
- object { House_One }
-
- //------------------------------------------------------------------->
- //------------------------------------------------------------------->
- //
- // End of this file.
-
-